home *** CD-ROM | disk | FTP | other *** search
/ Safarir 3 / SafTV-CD3.iso / pc / Bonus / Dessins Animés / static / jeux / tetris.swf / scripts / frame_24 / DoAction.as
Text File  |  2001-11-21  |  322b  |  18 lines

  1. ny = "0";
  2. while(ny < "20")
  3. {
  4.    ny += "1";
  5.    nx = "0";
  6.    while(nx < "10")
  7.    {
  8.       nx += "1";
  9.       if(eval("c" add (nx + "20") add (ny + "20")) == "1")
  10.       {
  11.          tellTarget("b" add (nx + "20") add (ny + "20"))
  12.          {
  13.             gotoAndStop(eval("/:lev") + "1");
  14.          }
  15.       }
  16.    }
  17. }
  18.